1 /*
2 * Created on 21-Jun-2005
3 *
4 * Copyright (C) AstroGrid. All rights reserved.
5 *
6 * This software is published under the terms of the AstroGrid
7 * Software License version 1.2, a copy of which has been included
8 * with this distribution in the LICENSE.txt file.
9 *
10 **/
11 package org.votech.ds6.plastlets;
12
13 /*** Interface for test classes used in conditional classloading
14 * - check method returns true if associated implementation class is to be loaded.
15 * @author Noel Winstanley nw@jb.man.ac.uk 21-Jun-2005
16 *
17 */
18 public interface Check {
19 /*** a test. returns true if the test passes */
20 boolean check();
21 }
22